home *** CD-ROM | disk | FTP | other *** search
- /* This file contains empty template routines that
- * the IDCMP handler will call uppon. Fill out these
- * routines with your code or use them as a reference
- * to create your program.
- */
-
- #define FALSE 0
- #define TRUE !FALSE
-
- int Gadget00Clicked( void )
- {
- /* routine when gadget "_Dithering" is clicked. */
- }
-
- int Gadget10Clicked( void )
- {
- /* routine when gadget "_Save" is clicked. */
- }
-
- int Gadget20Clicked( void )
- {
- /* routine when gadget "_Cancel" is clicked. */
- }
-
- int Gadget30Clicked( void )
- {
- /* routine when gadget "_Use" is clicked. */
- }
-
- int RealPrefsCloseWindow( void )
- {
- /* routine for "IDCMP_CLOSEWINDOW". */
- }
-
- int main()
- {
- SetupScreen();
- OpenRealPrefsWindow();
-
- while(HandleRealPrefsIDCMP());
-
- CloseRealPrefsWindow();
- CloseDownScreen();
- }
-